home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
saver
/
saver.frm
< prev
next >
Wrap
Text File
|
1995-02-26
|
1KB
|
56 lines
VERSION 2.00
Begin Form Form1
AutoRedraw = -1 'True
BackColor = &H00000000&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 5670
ClientLeft = 1170
ClientTop = 1545
ClientWidth = 8820
Height = 6105
Icon = SAVER.FRX:0000
Left = 1095
LinkTopic = "Form1"
MousePointer = 2 'Cross
ScaleHeight = 5670
ScaleWidth = 8820
Top = 1185
Width = 8970
WindowState = 2 'Maximized
Begin Timer Timer1
Left = 7575
Top = 3255
End
Begin CommandButton Command1
BackColor = &H000000FF&
Caption = "Press Enter and I Disappear - To get your screen back click left mouse button"
FontBold = -1 'True
FontItalic = 0 'False
FontName = "Arial"
FontSize = 8.25
FontStrikethru = 0 'False
FontUnderline = 0 'False
Height = 480
Left = 690
MousePointer = 1 'Arrow
TabIndex = 0
Top = 2445
Width = 7305
End
End
Option Explicit
Sub Command1_Click ()
command1.Visible = False
End Sub
Sub Form_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
End
End Sub